home *** CD-ROM | disk | FTP | other *** search
/ Trading on the Edge / Trading On The Edge - CD-ROM Toolkit (Wayzata Technology)(2031)(1994).bin / pc / shared / snns / snnsv3_0.z / snnsv3_0 / SNNSv3.0 / cleanup < prev    next >
Text File  |  1993-03-25  |  2KB  |  69 lines

  1. #!/bin/csh
  2.  
  3. # ****************************************************************************
  4. #  FILE     : cleanup
  5. #  SHORTNAME: cleanup
  6.  
  7. #  PURPOSE  : Shell scipt to call "make clean" in
  8. #          1) kernel in the directory kernel/source
  9. #          2) X user interface in xgui/source
  10. #          3) compiler in compiler/source (commented out )
  11.  
  12. #  AUTHOR   : Tilman Sommer, Niels Mache, Thomas Korbl, Ralf Huebner
  13. #  VERSION  : 2.1
  14. #  DATE     : 1.1.1991
  15.  
  16. #             (c) 1990-93 by SNNS-Group
  17. #             Institut fuer parallele und verteilte Hoechstleistungsrechner
  18. #             Universitaet Stuttgart
  19. # ****************************************************************************
  20.  
  21.  
  22.  
  23. echo "************************************************"
  24. echo "*                                              *"
  25. echo "*  SNNS  - Stuttgart Neural Network Simulator  *"
  26. echo "*                                              *"
  27. echo "*         cleaning SNNS version 3.0 ...        *"
  28. echo "*                                              *"
  29. echo "************************************************"
  30. echo ""
  31. echo ""
  32. set rootdir = `echo $cwd`
  33. if ( $1 == 'all' || $1 == 'kernel' || $1 == 'sim') then
  34.     echo "Cleaning kernel ... "
  35.     cd kernel/sources
  36.     echo "Deleting all object files ..."
  37.     make clean
  38.     cd ../.. 
  39.     echo "Done."
  40.     echo ""
  41. else
  42. endif
  43.  
  44. if ( $1 == 'all' || $1 == 'xgui' || $1 == 'sim') then
  45.     echo "Cleaning XGUI ... "
  46.     cd xgui/sources
  47.     make clean 
  48.     cd ../.. 
  49.     echo "Done."
  50.     echo ""
  51. else
  52. endif
  53.  
  54. #if ( $1 == 'all' || $1 == 'compiler') then
  55. #    echo "Cleaning compiler ... "
  56. #    cd compiler/sources 
  57. #    echo "Deleting all object files ..."
  58. #    make clean
  59. #    cd ../.. 
  60. #    echo "Done."
  61. #    echo ""
  62. #else
  63. #endif
  64.  
  65.  
  66.  
  67.  
  68.  
  69.